home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Main.dxr / 00003_final screen buttons.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  463 b   |  33 lines

  1. on goQuitScreen
  2.   exitLeafMenu()
  3.   go(label("quit"))
  4. end
  5.  
  6. on finalButtons
  7.   case the clickOn of
  8.     15:
  9.       quitNow()
  10.     16:
  11.       go(label("Main"))
  12.       setPrompter()
  13.     17:
  14.       finalPrint()
  15.     18:
  16.       finalSave()
  17.     19:
  18.       go("biblio")
  19.     20:
  20.       go("credits")
  21.   end case
  22. end
  23.  
  24. on finalPrint
  25.   gatherAllParts()
  26.   print(the text of member "PrintAllAnswers")
  27. end
  28.  
  29. on finalSave
  30.   set vLottaText to gatherAllParts()
  31.   saveTextToFile(vLottaText)
  32. end
  33.